SSH Access
SSH provides secure command-line access to your hosting environment for file management, deployments, maintenance tasks, and developer workflows.
Enabling SSH
- Log in to your Hosting Panel.
- Open Websites and select the website.
- Go to Advanced → Developer tools.
- Find the SSH connection details and add or generate credentials as required.
- Store your credentials securely and do not share them.
If SSH details are not displayed, the feature is not enabled for your hosting package. Contact support if you need it.
Connecting via Terminal
Windows
Use PowerShell, Windows Terminal, or a client such as PuTTY.
ssh username@hostname
macOS or Linux
Open Terminal and run:
ssh username@hostname
Using an SSH key
If you use a private key, restrict its permissions and connect like this:
ssh -i path/to/your_key username@hostname
Good practice
- Use SSH keys instead of passwords whenever possible.
- Limit access to the specific people who need it.
- Test commands carefully, especially on live websites.
- Use staging first when a change could affect visitors or email delivery.